home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / clang / 114_01.zip / ED1.CCC < prev    next >
Text File  |  1993-06-01  |  768b  |  39 lines

  1.  
  2. /*
  3. Screen editor:  special key definitions
  4. Source:  ed1.ccc
  5. This file was created by the configuration program:
  6. Version 2:  September 6, 1981.
  7. */
  8.  
  9. /*
  10. Define which keys are used for special edit functions.
  11. */
  12.  
  13. #define UP1 10
  14. #define DOWN1 13
  15. #define UP2 21
  16. #define DOWN2 4
  17. #define LEFT1 8
  18. #define RIGHT1 18
  19. #define INS1 14
  20. #define EDIT1 5
  21. #define ESC1 27
  22. #define DEL1 127
  23. #define ZAP1 26
  24. #define ABT1 24
  25. #define SPLT1 19
  26. #define JOIN1 16
  27.  
  28. /*
  29. Define length and width of screen and printer.
  30. */
  31.  
  32. #define SCRNW 64
  33. #define SCRNW1 63
  34. #define SCRNL 16
  35. #define SCRNL1 15
  36. #define SCRNL2 14
  37. #define LISTW 80
  38. 
  39. {